[index]
TitleBar Property
Syntax
set the titleBar to <boolean> Applies to titlebar
Description
The titleBar property determines the visibility of the title bar located at the top of the window. When the titleBar is set to true, it is displayed. If the titleBar is set to false, it is invisible. The visibility of the title bar can also be controlled using the show and hide commands.
Examples
Place the following handler in the script of a stack whose titlebar you wish to hide upon opening of the stack. The handler saves the original status of the titlebar and then resets the titlebar upon exiting the stack.
on openStack
global saveTitlebar
put the titleBar into saveTitlebar set the titleBar to false
end openStack
on closeStack
global saveTitlebar
set the titleBar to saveTitlebar
This text has been mechanically extracted from the Oracle Media Objects 1.0.4.9 MediaTalk Reference, © 1995 Oracle Corporation, and is provided here solely for educational/historical purposes.